home *** CD-ROM | disk | FTP | other *** search
/ Tandy Sensation 2 / Tandy Sensation II System.iso / svga / makdisk1.bat next >
DOS Batch File  |  1993-07-31  |  607b  |  27 lines

  1. @echo off
  2. cls
  3. echo This program copies the MS-DOS video drivers onto a diskette.
  4. echo.
  5. echo You will need one high density 3.5-inch diskette. The program
  6. echo formats the diskette and copies the drivers.
  7. echo.
  8. echo To quit this program, press [CTRL]+[C].
  9. echo.
  10. echo Place a high-density 3.5-inch diskette into drive A and press
  11. echo any key.
  12. pause
  13. format a: /f:1440 /u
  14. if errorlevel 1 goto done
  15. xcopy disk1 a:\ /s/e/v
  16. echo.
  17. echo Run INSTALL from the diskette by typing:
  18. echo.
  19. echo   A: [ENTER]
  20. echo   INSTALL [ENTER]
  21. echo.
  22. echo Follow the instructions on the screen.
  23. echo.
  24. :done
  25.  
  26.  
  27.